 :root {
    --red: #e80000;
  }

  body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #000;
  }

  .form-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-color: #000;
  }

  .form-box {
    width: 100%;
    max-width: 600px;
    text-align: center;
  }

  .form-box h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
  }

  .form-box p {
    font-size: 1rem;
    color: #fefe;
    margin-bottom: 40px;
  }

  form {
    text-align: left;
  }

  .form-group {
    margin-bottom: 20px;
  }

  label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #fff;
  }

  label span {
    color: var(--red);
  }

  input, select {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    border: 1px solid #111;
    border-radius: 6px;
    transition: border 0.2s ease;
    background-color: #111;
    color: #FFF;
  }

  input:focus, select:focus {
    border-color: var(--red);
    outline: none;
  }

  .submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--red);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .submit-btn:hover {
    background: #c70000;
  }
  .contact-info {
    text-align: center;
    padding: 30px 20px;
    background-color: #000;
  }

  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fff;
  }

  .info-grid {
    display: flex;
    justify-content: space-evenly;
    gap: 50px;
    flex-wrap: wrap;
  }

  .info-box {
    max-width: 300px;
    text-align: center;
  }

  .info-box .icon {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .info-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #e80000;
  }

  .info-box p {
    color: #fefe;
    font-size: 0.95rem;
    line-height: 1.5;
  }
   .core-values-devils {
      padding: 40px 20px;
      text-align: center;
    }

    .core-values-devils .section-heading {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .core-values-devils .section-heading span {
      color: #ff1c1c;
    }

    .core-values-devils .section-subtext {
      font-size: 1.1rem;
      color: #fff;
      margin-bottom: 50px;
      max-width: 800px;
      margin: 0 auto 50px;
      line-height: 1.6;
    }

    .value-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
    }

    .value-card {
      background-color: #000;
      border-top: 5px solid #ff1c1c;
      border-radius: 12px;
      padding: 25px 20px;
      width: 180px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 0 25px rgba(255, 28, 28, 0.3);
    }

    .value-card h3 {
      font-size: 2.8rem;
      color: #ff1c1c;
      margin-bottom: 10px;
    }

    .value-card h4 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: #fff;
    }

    .value-card p {
      font-size: 0.95rem;
      color: #aaa;
      line-height: 1.5;
    }

  @media(max-width: 768px) {
    .form-box {
      padding: 0 10px;
    }
     .info-grid {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  }